home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 60 / IOPROG_60.ISO / soft / c++ / gsl-1.1.1-setup.exe / {app} / src / ieee-utils / fp-os2emx.c < prev    next >
Encoding:
C/C++ Source or Header  |  2001-03-02  |  2.4 KB  |  92 lines

  1. /* ieee-utils/fp-os2.c
  2.  * 
  3.  * Copyright (C) 2001 Henry Sobotka <sobotka@axess.com>
  4.  * 
  5.  * This program is free software; you can redistribute it and/or modify
  6.  * it under the terms of the GNU General Public License as published by
  7.  * the Free Software Foundation; either version 2 of the License, or (at
  8.  * your option) any later version.
  9.  * 
  10.  * This program is distributed in the hope that it will be useful, but
  11.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.  * General Public License for more details.
  14.  * 
  15.  * You should have received a copy of the GNU General Public License
  16.  * along with this program; if not, write to the Free Software
  17.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  */
  19.  
  20. #include <float.h>
  21. #include <gsl/gsl_ieee_utils.h>
  22. #include <gsl/gsl_errno.h>
  23.  
  24. int
  25. gsl_ieee_set_mode (int precision, int rounding, int exception_mask)
  26. {
  27.   unsigned mode = 0;
  28.  
  29.   switch (precision)
  30.     {
  31.     case GSL_IEEE_SINGLE_PRECISION:
  32.       _control87(PC_24, MCW_PC);    
  33.       break ;
  34.     case GSL_IEEE_DOUBLE_PRECISION:
  35.       _control87(PC_53, MCW_PC);
  36.       break ;
  37.     case GSL_IEEE_EXTENDED_PRECISION:
  38.       _control87(PC_64, MCW_PC);
  39.       break ;
  40.     }
  41.  
  42.   switch (rounding)
  43.     {
  44.     case GSL_IEEE_ROUND_TO_NEAREST:
  45.       _control87(RC_NEAR, MCW_RC);
  46.       break ;
  47.     case GSL_IEEE_ROUND_DOWN:
  48.       _control87(RC_DOWN, MCW_RC);
  49.       break ;
  50.     case GSL_IEEE_ROUND_UP:
  51.       _control87(RC_UP, MCW_RC);
  52.       break ;
  53.     case GSL_IEEE_ROUND_TO_ZERO:
  54.       _control87(RC_CHOP, MCW_RC);
  55.       break ;
  56.     default:
  57.       _control87(RC_NEAR, MCW_RC);
  58.     }
  59.  
  60.   /* Turn on all the exceptions apart from 'inexact' */
  61.  
  62.   mode = EM_INVALID | EM_DENORMAL | EM_ZERODIVIDE | EM_OVERFLOW | EM_UNDERFLOW;
  63.  
  64.   if (exception_mask & GSL_IEEE_MASK_INVALID)
  65.     mode &= ~ EM_INVALID;
  66.  
  67.   if (exception_mask & GSL_IEEE_MASK_DENORMALIZED)
  68.     mode &= ~ EM_DENORMAL;
  69.  
  70.   if (exception_mask & GSL_IEEE_MASK_DIVISION_BY_ZERO)
  71.     mode &= ~ EM_ZERODIVIDE;
  72.  
  73.   if (exception_mask & GSL_IEEE_MASK_OVERFLOW)
  74.     mode &= ~ EM_OVERFLOW;
  75.  
  76.   if (exception_mask & GSL_IEEE_MASK_UNDERFLOW)
  77.     mode &= ~ EM_UNDERFLOW;
  78.  
  79.   if (exception_mask & GSL_IEEE_TRAP_INEXACT)
  80.     {
  81.       mode |= EM_INEXACT;
  82.     }
  83.   else
  84.     {
  85.       mode &= ~ EM_INEXACT;
  86.     }
  87.  
  88.   _control87(mode, MCW_EM);
  89.  
  90.   return GSL_SUCCESS ;
  91. }
  92.